home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / wb / DosMan121.lha / man / Semicolon < prev    next >
Text File  |  1995-04-03  |  891b  |  38 lines

  1.  
  2.  
  3.       Semicolon (;) (1.3/2.x/3.x internal)
  4.  
  5.  
  6.      NAME
  7.             ; - Allows you to enter comments into an AmigaDOS 
  8.         script.
  9.  
  10.  
  11.      SYNOPSIS
  12.  
  13.             ;All comments are here...
  14.  
  15.  
  16.      DESCRIPTION
  17.             The comments can be located anywhere inside the 
  18.         script.  To be considered part of the comment then all 
  19.         the words must be to the right of the semicolon.  
  20.         Anything to the left of it will be read as a command. 
  21.  
  22.             The string may be up to 254 lines long (255 including 
  23.         the ;).
  24.  
  25.      EXAMPLE
  26.  
  27.             This is a simple command sequence file using the ; 
  28.         command. Everything to the right of the ; is considered a 
  29.         comment and will not be acted upon.
  30.  
  31.  
  32.         ;Begin ImageFX assigns
  33.         Assign ImageFX Work:ImageFX
  34.         Assign Help Work:ImageFX/Help  ;Assigns help docs
  35.         ;End assigning ImageFX
  36.  
  37.  
  38.